home *** CD-ROM | disk | FTP | other *** search
/ Deutsche Edition 1 / Deutsche Edition 1.iso / amok / amok_lha / amok20.lha / ComplexLib / ComplexInOut.DOK next >
Text File  |  1993-08-15  |  2KB  |  44 lines

  1.  
  2.     Programm: ComplexInOut
  3.     Version: 1.0
  4.     Autor: Gary Struhlik
  5.     
  6. ComplexInOut, LongComplexInOut und FFPComplexInOut dienen zur Ein-   bzw.
  7. Ausgabe von komplexen Zahlen in Verbindung mit den Modulen xxxxComplexLib.
  8.  
  9.  
  10.                  Prozedur                           |    Beschreibung
  11. -------------------------------------------------------------------------------
  12.                                                        komplexe Zahl ausgeben.
  13. PROCEDURE WriteComplex( A : COMPLEX;                   A ist die auszugebende
  14.                 m,n : INTEGER; expo,pol : BOOLEAN);      komplexe Zahl
  15.                                                        m,n entspricht dem Aus-
  16.                                                            gabeformat (siehe
  17.                                                            RealInOut im Hand-
  18.                                                            buch)
  19.                                                        expo=TRUE -> Wissen-
  20.                                                                     schaftliche
  21.                                                                    Schreibweise 
  22.                                                        expo=FALSE -> Festkomma-
  23.                                                                     darstellung
  24.                                                        pol=TRUE -> Darstellung
  25.                                                                    in Polar-
  26.                                                                    bzw. Exponen-
  27.                                                                    tialform.
  28.                                                        pol=FALSE -> Darstellung
  29.                                                                     in Normal-
  30.                                                                     form 
  31.  
  32. PROCEDURE ReadComplex( VAR A : COMPLEX;                Die komplexe Zahl A soll
  33.                            pol : BOOLEAN);             eingegeben werden in 
  34.                                                        Polarform (pol=TRUE) oder
  35.                                                        Normalform (pol=FALSE)
  36.  
  37. PROCEDURE WriteReal( x : REAL;                         siehe Handbuch, nur  
  38.                    m,n : INTEGER; expo : BOOLEAN);     erweitert durch expo
  39.                                                        ( siehe WriteComplex)
  40.  
  41. PROCEDURE ReadReal( VAR x : REAL);                     siehe Handbuch
  42.  
  43.  
  44.